Thanks for downloading the profile background image mod inspired by the profile header image.

This is a simple yet nice mod to allow users to have a more "home" feeling on there profile page.

It will display an image of there choice as a background in there profile.

Please ensure that word wrap is on to better read this tutorial.

-----------------------------------------

Install

Upload all files in the upload folder into your php fusion root folder.
Make sure to include the help folder also.
Overwrite profile.php

-----------------------------------------

profile.php

In case your profile.php file is already modded and you dont want to overwrite it,
do the following:

open profile.php

find opentable($locale['400']);

Add above it

if ($user_data['user_background']) {
echo"<style type='text/css'>
body {background-color:#fff;background-image:url(".$user_data['user_background'].");margin:0px;font-family:Verdana, Arial, Helvetica, sans-serif;font-size:11px;color:#000}
</style>";
}
else {
echo""; }


-----------------------------------------

Should look like this

	add_to_title($locale['global_200'].$locale['400'].$locale['global_201'].$user_data['user_name']);
if ($user_data['user_background']) {
echo"<style type='text/css'>
body {background-color:#fff;background-image:url(".$user_data['user_background'].");margin:0px;font-family:Verdana, Arial, Helvetica, sans-serif;font-size:11px;color:#000}
</style>";
}
else {
echo""; }
	opentable($locale['400']);

-----------------------------------------

Enjoy

Questions go here

http://phpfusion-mods.com/forum/viewthread.php?thread_id=8692

Created by Qwertz

Idea from Glitcherking